![]() |
ThreadState |
Header: Threads.h |
enum ThreadState { kReadyThreadState = , kStoppedThreadState = 1, kRunningThreadState = 2 };
The thread is ready to run.
The thread is stopped and not ready to run.
The thread is running.
The Thread Manager functions which get and set information about the state of a thread, such as SetThreadState
, use these values.
© 2000 Apple Computer, Inc. — (Last Updated 3/8/2000)